77a5e62f9d5a56a48f82b6bdd8519b18275bef1d,enterprise/core-edge/src/test/java/org/neo4j/coreedge/scenarios/ConvertNonCoreEdgeStoreIT.java,ConvertNonCoreEdgeStoreIT,shouldReplicateTransactionToCoreServers,#,86
Before Change
for ( int serverId = 1; serverId < CLUSTER_SIZE; serverId++ )
{
File destination = cluster.getCoreServerById( serverId ).homeDir();
new RestoreExistingClusterCli( ).run( toArray( args().homeDir( destination ).config( destination )
.from( classicNeo4jStore ).database( "graph.db" ).seed( seed ).force().build() ) );
}
cluster.start();
After Change
for ( int serverId = 1; serverId < CLUSTER_SIZE; serverId++ )
{
Path destination = Paths.get(cluster.getCoreServerById( serverId ).homeDir().getPath());
new RestoreExistingClusterCli( destination, destination ).execute(
toArray( args().from( classicNeo4jStore ).database( "graph.db" ).seed( seed ).force().build() ) );
}
cluster.start();